home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / beveled-pattern-heading.scm < prev    next >
Text File  |  2009-12-15  |  4KB  |  122 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; Beveled pattern heading for web pages
  5. ; Copyright (C) 1997 Federico Mena Quintero
  6. ; federico@nuclecu.unam.mx
  7. ;
  8. ; This program is free software; you can redistribute it and/or modify
  9. ; it under the terms of the GNU General Public License as published by
  10. ; the Free Software Foundation; either version 2 of the License, or
  11. ; (at your option) any later version.
  12. ;
  13. ; This program is distributed in the hope that it will be useful,
  14. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ; GNU General Public License for more details.
  17. ;
  18. ; You should have received a copy of the GNU General Public License
  19. ; along with this program; if not, write to the Free Software
  20. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. ; ************************************************************************
  22. ; Changed on Feb 4, 1999 by Piet van Oostrum <piet@cs.uu.nl>
  23. ; For use with GIMP 1.1.
  24. ; All calls to gimp-text-* have been converted to use the *-fontname form.
  25. ; The corresponding parameters have been replaced by an SF-FONT parameter.
  26. ; ************************************************************************
  27.  
  28.  
  29. (define (script-fu-beveled-pattern-heading
  30.          text text-size font pattern transparent)
  31.   (let* (
  32.         (img (car (gimp-image-new 10 10 RGB)))
  33.         (textl
  34.           (car
  35.             (gimp-text-fontname img -1 0 0 text 0 TRUE text-size PIXELS font)))
  36.  
  37.         (width (car (gimp-drawable-width textl)))
  38.         (height (car (gimp-drawable-height textl)))
  39.  
  40.         (background (car (gimp-layer-new img
  41.                                          width height RGBA-IMAGE
  42.                                          "Background" 100 NORMAL-MODE)))
  43.         (bumpmap (car (gimp-layer-new img
  44.                                       width height RGBA-IMAGE
  45.                                       "Bumpmap" 100 NORMAL-MODE)))
  46.         )
  47.  
  48.     (gimp-context-push)
  49.  
  50.     (gimp-image-undo-disable img)
  51.     (gimp-image-resize img width height 0 0)
  52.     (gimp-image-add-layer img background 1)
  53.     (gimp-image-add-layer img bumpmap 1)
  54.  
  55.     ; Create pattern layer
  56.  
  57.     (gimp-context-set-background '(0 0 0))
  58.     (gimp-edit-fill background BACKGROUND-FILL)
  59.     (gimp-context-set-pattern pattern)
  60.     (gimp-edit-bucket-fill background
  61.                            PATTERN-BUCKET-FILL NORMAL-MODE 100 0 FALSE 0 0)
  62.  
  63.     ; Create bumpmap layer
  64.  
  65.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  66.  
  67.     (gimp-context-set-background '(127 127 127))
  68.     (gimp-selection-layer-alpha textl)
  69.     (gimp-selection-shrink img 1)
  70.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  71.  
  72.     (gimp-context-set-background '(255 255 255))
  73.     (gimp-selection-layer-alpha textl)
  74.     (gimp-selection-shrink img 2)
  75.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  76.  
  77.     (gimp-selection-none img)
  78.  
  79.     ; Bumpmap
  80.  
  81.     (plug-in-bump-map RUN-NONINTERACTIVE img background bumpmap 135 45 2 0 0 0 0 TRUE FALSE 0)
  82.  
  83.     ; Clean up
  84.  
  85.     (gimp-context-set-background '(0 0 0))
  86.     (gimp-selection-layer-alpha textl)
  87.     (gimp-selection-invert img)
  88.     (gimp-edit-clear background)
  89.     (gimp-selection-none img)
  90.  
  91.     (gimp-image-set-active-layer img background)
  92.     (gimp-image-remove-layer img bumpmap)
  93.     (gimp-image-remove-layer img textl)
  94.  
  95.     (if (= transparent FALSE)
  96.         (gimp-image-flatten img))
  97.  
  98.     (gimp-image-undo-enable img)
  99.     (gimp-display-new img)
  100.  
  101.     (gimp-context-pop)
  102.   )
  103. )
  104.  
  105.  
  106. (script-fu-register "script-fu-beveled-pattern-heading"
  107.   _"H_eading..."
  108.   _"Create a beveled pattern heading for webpages"
  109.   "Federico Mena Quintero"
  110.   "Federico Mena Quintero"
  111.   "July 1997"
  112.   ""
  113.   SF-STRING     _"Text"               "Hello world!"
  114.   SF-ADJUSTMENT _"Font size (pixels)" '(72 2 200 1 1 0 1)
  115.   SF-FONT       _"Font"               "Sans"
  116.   SF-PATTERN    _"Pattern"            "Wood"
  117.   SF-TOGGLE     _"Transparent background" FALSE
  118. )
  119.  
  120. (script-fu-menu-register "script-fu-beveled-pattern-heading"
  121.                          "<Image>/File/Create/Web Page Themes/Beveled Pattern")
  122.